home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Acorn RISC PD-CD 1
/
Acorn RISC PD-CD 1.iso
/
languages
/
c
/
_desklibsm
/
h
/
core
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-05-26
|
253 b
|
18 lines
#ifndef __dl_core_h
#define __dl_core_h
#ifndef BOOL
#define BOOL int
#define FALSE 0
#define TRUE 1
#define ERROR 1
#define NOERROR 0
#endif
#ifndef NULL
#define NULL 0
#endif
typedef struct {
int errnum;
char errmess[252];
} os_error;
#endif